EvaluationCard

fun EvaluationCard(modifier: Modifier = Modifier, title: String, desc: String, completed: Boolean = false, checkMark: Int = 1, onNavigate: () -> Unit)

Composable for an individual evaluation card, including a checkmark if completed.

Parameters

modifier

Modifier for customizations to the layout.

title

The title of the evaluation (e.g., Daily Evaluation, Bi-Weekly Evaluation).

desc

A description for the evaluation (can be left empty).

completed

Boolean flag to indicate if the evaluation is completed.

checkMark

An integer to control whether a checkmark is shown.

onNavigate

A function to navigate when the card is clicked.